type regexp.queue
7 uses
regexp (current package)
exec.go#L15: type queue struct {
exec.go#L41: q0, q1 queue // two queues for runq, nextq
exec.go#L246: func (m *machine) clear(q *queue) {
exec.go#L260: func (m *machine) step(runq, nextq *queue, pos, nextPos int, c rune, nextCond *lazyFlag) {
exec.go#L317: func (m *machine) add(q *queue, pc uint32, pos int, cap []int, cond *lazyFlag, t *thread) *thread {
regexp.go#L257: m.q0 = queue{make([]uint32, n), make([]entry, 0, n)}
regexp.go#L258: m.q1 = queue{make([]uint32, n), make([]entry, 0, n)}